home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00083_DragDropSetUp.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  6.0 KB  |  188 lines

  1. --
  2. -- DragDropSetUp
  3. --
  4.  
  5. -- this class handles the round randomization of the drag and drop game data
  6.  
  7. -- runtime initialization of the game draggableList:
  8. -- by this point both targetList and draggableList will have been initialized.
  9.  
  10. -- the draggable list is a list of drag records, initially formatted as follows:
  11. -- spriteNum:[#coverNum:the memberNum of sprite spr, #coverLib: the castLibNum of sprite spr, #loc:(the loc of sprite spr), #identifier:value ("#" & the name of the init frame member at this sprite), #myNum:0, #myLib:answerCast1, #matchSpriteList:0, #showflag:0 ]
  12.  
  13.  
  14. -- the initial targetList is as follows:  
  15. -- spriteNum:[#loc:(the loc of sprite spr), #identifier:value ("#" & the name of member the memberNum of sprite spr of castLib the castLibNum of sprite spr), #myNum:the memberNum of sprite spr, #myLib:the castLibNum of sprite spr, #showFlag:0]
  16.  
  17.  
  18.  
  19. property ancestor
  20.  
  21. property randomFlag  -- will the sprites be randomized from the pool or left as the sprite layout?
  22. property poolOrderFlag -- set up the order of play to match the draggable pool order.
  23.  
  24. on new me
  25.   -- set up all constants first:
  26.   
  27.   set ancestor = new (script "DraggableListMgmt")
  28.   
  29.   set randomFlag = TRUE
  30.   set poolOrderFlag = FALSE
  31.   
  32.   return me
  33. end
  34.  
  35.  
  36. on destruct me
  37.   if objectP (ancestor) then destruct (ancestor)
  38.   set ancestor = 0
  39. end
  40.  
  41.  
  42. -- manually turn randomization off.
  43. -- this must be done before initialize round to have any effect.
  44.  
  45. on randomOff me
  46.   set randomFlag = FALSE
  47. end
  48.  
  49.  
  50. on setByPoolOrder me
  51.   set randomFlag = FALSE
  52.   set poolOrderFlag = TRUE
  53. end
  54.  
  55.  
  56. -- the deal here is to evenly distribute the draggables into the draggable sprites.
  57. -- each target (target) should contain a roughly even number of matching draggables in the end list, even if there are more 
  58. -- draggables than slots for draggables.
  59.  
  60. on initializeRound me  
  61.   if randomFlag then initializeRandom (me)
  62.   else initializeNonRandom (me)
  63.   
  64.   initHilitePool (me, gettargetSprites (me))
  65. end
  66.  
  67.  
  68.  
  69. on initializeRandom me
  70.   -- there is only one list of draggable members at this point
  71.   -- in the form: [castLibNum:[#memberName:memberNum, ... ]]
  72.   -- get that castNumber for future reference:
  73.   set memberList = the memberList of ancestor
  74.   set mCastNum = getPropAt (memberList, 1)
  75.   
  76.   -- get the temporary target/member pool:
  77.   -- in the form: [targetSprite:[memberList], targetSprite:[memberList], ... ]
  78.   set targetMemberLst = setUptargetPool (me)
  79.   
  80.   set targetNames = gettargetSpritePool (me)
  81.   set targetList = the targetList of ancestor
  82.   set numtargets = count (targetList)
  83.   set currtarget = random (numtargets)
  84.   
  85.   set tmpLst = duplicate (the draggableList of ancestor)
  86.   set draggableList = [:]
  87.   
  88.   repeat while count (tmpLst)
  89.     -- gather draggable sprite information.
  90.     -- randomly choose a draggable rec:
  91.     set dragSpr = getPropAt (tmpLst, random (count (tmpLst)))
  92.     set rec = getAProp (tmpLst, dragSpr)
  93.     
  94.     -- get current target information:
  95.     set cSpr = getPropAt (targetList, currtarget)
  96.     set cRec = getAProp (targetList, cSpr)
  97.     set id = getAProp (cRec, #identifier)
  98.     
  99.     set cPool = getProp (targetMemberLst, id)
  100.     
  101.     if not listP (cPool) then 
  102.       nothing
  103.     else if count (cPool) then   -- i.e. there are members left that match the current target.
  104.       setAProp (rec, #matchSpriteList, getAProp (targetNames, id))
  105.       setAProp (rec, #identifier, id)
  106.       
  107.       set currtargetPool = getProp (targetMemberLst, id)
  108.       set tmp = random (count (cPool))
  109.       set mNum = getAt (cPool, tmp)
  110.       deleteAt (cPool, tmp)
  111.       setAProp (targetMemberLst, id, cPool)
  112.       
  113.       setAProp (rec, #myNum, mNum)
  114.       setAProp (rec, #myLib, mCastNum)
  115.       
  116.       -- return the updated record to the draggableList:
  117.       setAProp (draggableList, dragSpr, rec)
  118.       
  119.       -- delete the prop from the temporary list:
  120.       deleteProp (tmpLst, dragSpr)
  121.     else
  122.       put "Integrator: You may have more draggable sprites than draggable cast members. Check it out."
  123.     end if
  124.     
  125.     set currtarget = currtarget + 1
  126.     if currtarget > numtargets then set currtarget = 1
  127.   end repeat
  128.   
  129.   set the draggableList of ancestor = draggableList
  130. end
  131.  
  132.  
  133. -- the non-randomized version of initializeRound does not pull draggables from a pool.
  134. -- Instead, it takes the current choices and sprite order of draggables and matches them to their respective targets.
  135.  
  136. on initializeNonRandom me
  137.   -- there is only one list of draggable members at this point
  138.   -- in the form: [castLibNum:[#memberName:memberNum, ... ]]
  139.   -- get that castNumber for future reference:
  140.   set memberList = the memberList of ancestor
  141.   set mCastNum = getPropAt (memberList, 1)
  142.   set draggablePool = getAProp (memberList, mCastNum)
  143.   
  144.   set targetNames = gettargetSpritePool (me)  -- [identifier:[spr,spr,spr],...]
  145.   set targetCount = count (targetNames)
  146.   
  147.   set tmpLst = duplicate (the draggableList of ancestor)
  148.   set draggableList = [:]
  149.   
  150.   set dCount = count (tmpLst)
  151.   repeat with i = 1 to dCount  -- go through the draggables one by one.
  152.     -- gather draggable sprite information.
  153.     set dragSpr = getPropAt (tmpLst, i)
  154.     set rec = getAProp (tmpLst, dragSpr)
  155.     
  156.     if poolOrderFlag then -- go by the order of the draggables pool
  157.       set id = getPropAt (draggablePool, i)
  158.       setAProp (rec, #identifier, id)
  159.       setAProp (rec, #myNum, getAProp (draggablePool, id))
  160.       setAProp (rec, #myLib, mCastNum)
  161.     else  -- go by the order of the placed sprites.
  162.       set id = getAProp (rec, #identifier)
  163.       setAProp (rec, #myNum, getAProp (rec, #coverNum))
  164.       setAProp (rec, #myLib, getAProp (rec, #coverLib))
  165.     end if
  166.     
  167.     -- get and set current target information:
  168.     set currTargetList = []
  169.     repeat with j = 1 to targetCount
  170.       if getPropAt (targetNames, j) = id then
  171.         set currTargetList = getAt (targetNames, j)
  172.         exit repeat
  173.       end if
  174.     end repeat
  175.     
  176.     setAProp (rec, #matchSpriteList, currTargetList)  
  177.     
  178.     -- return the updated record to the draggableList:
  179.     setAProp (draggableList, dragSpr, rec)
  180.     
  181.   end repeat
  182.   
  183.   set the draggableList of ancestor = draggableList
  184. end
  185.  
  186.  
  187.  
  188.